home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 5
/
Amiga Tools 5.iso
/
grafik
/
viewer
/
superviewel
/
install_superview
< prev
next >
Wrap
Text File
|
1996-07-16
|
4KB
|
121 lines
; $VER: Install_SuperView.script V5.43 (2.5.96)
; © 1993-96 by Andreas R. Kleinert.
; Italian strings by Alessandro Basso (cralex@dei.unipd.it)
(set selectlang (askchoice
(prompt "")
(help @askchoice-help)
(choices "Deutsche Installation" "English Installation" "Italian Installation")
(default 1)
)
)
(if (= selectlang 0) (set @language "deutsch") )
(if (= selectlang 1) (set @language "english") )
(if (= selectlang 2) (set @language "italiano") )
(if (= @language "deutsch")
(
(set MSG_wrong_OS (cat "Sie benötigen mindestens OS V2.04 für SuperView !\n\n"
"SuperView wird auf Ihrem System nicht laufen !"))
(set MSG_InstallingSuperView "Installiere jetzt SuperView. Die Libraries müssen separat installiert werden !")
(set MSG_SelectPath "Wählen Sie das Zielverzeichnis für SuperView")
(set MSG_InstallingCatalogs "Installiere jetzt die Katalog-Dateien für die\nOS V2.1+ Sprach-Unterstützung.")
(set MSG_SelectCatalogPath "Wählen Sie den Pfad für die Katalog-Dateien")
(set MSG_DoInstallSuperView "SuperView wurde installiert.\nSie sollten nun SuperView-Library installieren,\nfalls nicht bereits geschehen.")
(set MSG_SuperViewPath "Modifiziere jetzt S:User-Startup für einen Suchpfad...")
(set MSG_CopyPalette "SuperViewPalette nach SYS:WBStartup kopieren ?\n(Nicht mit MagicWB, etc.)")
)
)
(if (= @language "english")
(
(set MSG_wrong_OS (cat "You need at least OS V2.04 to run SuperView !\n\n"
"SuperView will not run with your system configuration !"))
(set MSG_InstallingSuperView "Installing SuperView now. Libraries have to be installed separately !")
(set MSG_SelectPath "Select path to install SuperView to")
(set MSG_InstallingCatalogs "Installing Catalog-Files for OS V2.1+\nCode localization.")
(set MSG_SelectCatalogPath "Select path to install Catalogs to")
(set MSG_DoInstallSuperView "SuperView has been installed.\nYou should install SuperView-Library\nnow if not already done.")
(set MSG_SuperViewPath "Now modifying your S:User-Startup for a search path...")
(set MSG_CopyPalette "Copy SuperViewPalette to SYS:WBStartup ?\n(Not with MagicWB, etc.)")
)
)
(if (= @language "italiano")
(
(set MSG_wrong_OS (cat "Ti serve almeno AmigaOS V2.04 per usare SuperView !\n\n"
"SuperView non funzionerà con la tua configurazione di sistema !"))
(set MSG_InstallingSuperView "Ora installo SuperView. Le Librerie dovranno essere installate separatamente !")
(set MSG_SelectPath "Seleziona il percorso dove installare SuperView")
(set MSG_InstallingCatalogs "Installo File-Catalogo per OS V2.1+\nLocalizzazione del Codice.")
(set MSG_SelectCatalogPath "Seleziona percorso in cui installare i Cataloghi")
(set MSG_DoInstallSuperView "SuperView è stato installato.\nOra dovresti installare le SuperView-Library\nse non lo hai già fatto.")
(set MSG_SuperViewPath "Ora modifico la tua S:User-Startup per il percorso di ricerca...")
(set MSG_CopyPalette "Copy SuperViewPalette to SYS:WBStartup ?\n(Not with MagicWB, etc.)")
)
)
(set OS_VER (/ (getversion) 65536) )
(if(< OS_VER 37)
(abort MSG_wrong_OS)
)
(complete 0)
(copyfiles
(prompt MSG_Installing)
(help @copyfiles-help)
(source "")
(set svcomdir
(askdir
(prompt MSG_SelectPath)
(help @askdir-help)
(newpath)
(default "SYS:SuperView")
)
)
(dest svcomdir)
(all)
(confirm)
)
(complete 70)
(copyfiles
(prompt MSG_InstallingCatalogs)
(help @copyfiles-help)
(source "locale/catalogs")
(set svcomdir
(askdir
(prompt MSG_SelectCatalogPath)
(help @askdir-help)
(newpath)
(default "SYS:locale/Catalogs")
)
)
(dest svcomdir)
(all)
(confirm)
)
(copyfiles
(prompt MSG_CopyPalette)
(help @copyfiles-help)
(source "Tools")
(dest "SYS:WBStartup")
(pattern "SuperViewPalette#?")
(confirm)
)
(startup "SuperView"
(prompt MSG_SuperViewPath)
(help @startup-help)
(command "Path "svcomdir" ADD\n")
)
(complete 99)
(exit MSG_DoInstallSuperView)